home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 1 / PC Actual CD 01.iso / share / dos / graficos / plydat14.arj / RIPPLE.PI < prev    next >
Encoding:
Text File  |  1992-04-05  |  896 b   |  52 lines

  1. // Generic Polyray input File
  2. // Polyray input file: Alexander Enzmann
  3. // Time on 20Mhz 286/ 10Mhz 287: 1 setup, 56 tracing
  4.  
  5. // Set up the camera
  6. viewpoint {
  7.    from <0,20,-8>
  8.    at <0,0,1000>
  9.    up <0,1,0>
  10.    angle 45
  11.    hither 1
  12.    yon 4000
  13.    resolution 160, 160
  14.    }
  15.  
  16. include "colors.inc"
  17. background black
  18. light orange, < 0, 40, 900>
  19.  
  20. define rippled_blue
  21. texture {
  22.    noise surface {
  23.       color <0.4, 0.4, 1.0>
  24.       normal 2
  25.       frequency 100
  26.       bump_scale 2
  27.       ambient 0.3
  28.       diffuse 0.4
  29.       specular white, 0.7
  30.       reflection 0.5
  31.       microfacet Reitz 10
  32.       }
  33.    scale <100, 1, 100>
  34.    }
  35.  
  36. object {
  37.    sphere <0, -10, 1000>, 100
  38.    texture {
  39.       surface {
  40.          ambient orange, 1
  41.          diffuse 0
  42.          specular 0
  43.          }
  44.       }
  45.    }
  46.  
  47. object {
  48.    polynomial y
  49.    translate <0, -1, 0>
  50.    rippled_blue
  51.    }
  52.